QueryServiceStatusEx (advapi32)
Last changed: -193.128.29.5

.
Summary
The QueryServiceStatusEx function retrieves the current status of the specified service based on the specified information level.

C# Signature:

[DllImport("advapi32.dll", CharSet=CharSet.Unicode, SetLastError=true)]
public static extern unsafe bool QueryServiceStatusEx(IntPtr serviceHandle, int infoLevel, IntPtr buffer, int bufferSize, out int bytesNeeded);

VB Signature:

TODO

User-Defined Types:

None.

Alternative Managed API:

Do you know one? Please contribute it!

Notes:

For infoLevel only SC_STATUS_PROCESS_INFO (0x0) is allowed .

See SERVICE_STATUS_PROCESS definition.

See OpenService to get the hService.

None.

Tips & Tricks:

Please add some!

Sample Code:

Please add some!

Documentation